/* ====== ENHANCED LUXURY SIZE MEASUREMENT STYLES ====== */
:root {
  --gold: #e0c495;
  --gold-dark: #b57c4c;
  --gold: #e0c495;
  --dark: #0a0a0a;
  --darker: #111111;
  --dark-light: #1a1a1a;
  --text: #f8f8f8;
  --text-muted: #aaaaaa;
  --accent: #25D366;
  --success: #10b981;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d1b0a 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ====== LUXURY LOADER ====== */
.luxury-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-content {
  text-align: center;
  color: var(--gold);
}

.diamond-loader {
  width: 60px;
  height: 60px;
  border: 3px solid var(--gold);
  transform: rotate(45deg);
  margin: 0 auto 20px;
  animation: diamondPulse 2s infinite;
}

@keyframes diamondPulse {
  0%, 100% { 
    transform: rotate(45deg) scale(1);
    border-color: var(--gold);
  }
  50% { 
    transform: rotate(45deg) scale(1.1);
    border-color: var(--light-gold);
  }
}

.loader-content p {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Cormorant Garamond', serif;
}

.loader-content span {
  font-size: 1rem;
  opacity: 0.8;
  letter-spacing: 3px;
}

/* ====== ENHANCED LUXURY NAVBAR ====== */
.luxury-navbar {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(224, 196, 149, 0.2);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
}

.logo span {
  font-weight: 300;
  color: var(--gold-light);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 12px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  white-space: nowrap;
}

.nav-links li a i {
  font-size: 1rem;
  opacity: 0.8;
}

.nav-links li a:hover {
  background: rgba(224, 196, 149, 0.1);
  color: var(--gold);
  transform: translateY(-2px);
}

.nav-links li a.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-weight: 600;
}

.nav-cta {
  margin-left: 15px;
}

.nav-concierge-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black) !important;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(224, 196, 149, 0.3);
}

.nav-concierge-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(224, 196, 149, 0.4);
  background: linear-gradient(135deg, var(--light-gold), var(--gold));
}

.luxury-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 20px rgba(224, 196, 149, 0.3);
}

.luxury-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(224, 196, 149, 0.4);
  color: var(--black);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ====== LUXURY HERO SECTION ====== */
.luxury-hero-section {
  position: relative;
  height: 70vh;
  background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.9)), 
              url('./img/Noorvia-hijab-hero-banner(2).png') center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(224, 196, 149, 0.1), transparent);
  z-index: 1;
}

.hero-content {
  text-align: center;
  z-index: 2;
  padding: 0 20px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.gold-text {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin-bottom: 5px;
}

.stat-label {
  color: var(--light-gold);
  font-size: 1rem;
  letter-spacing: 1px;
}

/* ====== MEASUREMENT GUIDE ====== */
.measurement-guide {
  padding: 100px 40px;
  background: var(--dark-gray);
}

.guide-container {
  max-width: 1200px;
  margin: 0 auto;
}

.guide-header {
  text-align: center;
  margin-bottom: 80px;
}

.guide-header h2 {
  font-size: 3.5rem;
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 20px;
  font-weight: 700;
}

.guide-header p {
  font-size: 1.3rem;
  color: var(--light-gold);
  margin-bottom: 30px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.divider-line {
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-divider i {
  color: var(--gold);
  font-size: 1.2rem;
}

.guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.guide-step {
  background: linear-gradient(145deg, var(--medium-gray), var(--dark-gray));
  border: 1px solid rgba(224, 196, 149, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.guide-step:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(224, 196, 149, 0.1);
}

.step-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #111;
}

.guide-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 15px;
  font-weight: 600;
}

.guide-step p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ====== PREMIUM INTRO ====== */
.premium-intro {
  padding: 100px 40px;
  background: linear-gradient(135deg, rgba(224, 196, 149, 0.05) 0%, transparent 50%);
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}

.gold-accent {
  color: var(--gold);
  font-style: italic;
}

.intro-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.intro-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 500;
}

.feature i {
  font-size: 1.1rem;
}

/* ====== LUXURY MEASUREMENT FORM ====== */
.luxury-measurement-form {
  padding: 80px 40px;
}

.form-container {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(224, 196, 149, 0.02) 100%);
  border-radius: 24px;
  padding: 60px;
  border: 1px solid rgba(224, 196, 149, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-header {
  text-align: center;
  margin-bottom: 50px;
}

.form-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #111;
  box-shadow: 0 10px 30px rgba(224, 196, 149, 0.3);
}

.form-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.form-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Form Sections */
.form-section {
  margin-bottom: 50px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(224, 196, 149, 0.2);
}

.section-header i {
  color: var(--gold);
  font-size: 1.5rem;
}

.section-header h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
}

.section-header small {
  color: var(--text-muted);
  font-weight: 300;
}

/* Form Grids */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.measurements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.preferences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Form Elements */
.luxury-group {
  position: relative;
}

.luxury-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
}

.luxury-label i {
  font-size: 1rem;
  width: 20px;
}

.luxury-input,
.luxury-select,
.luxury-textarea {
  width: 100%;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.luxury-input:focus,
.luxury-select:focus,
.luxury-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgb(0, 0, 0);
  box-shadow: 0 0 30px rgba(224, 196, 149, 0.2);
  transform: translateY(-2px);
}

.luxury-input::placeholder,
.luxury-textarea::placeholder {
  color: var(--text-muted);
}

.input-ornament,
.textarea-ornament {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.3s ease;
}

.luxury-input:focus + .input-ornament,
.luxury-textarea:focus + .textarea-ornament {
  width: 100%;
}

/* Measurement Cards */
.measurement-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(224, 196, 149, 0.1);
  border-radius: 16px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
}

.measurement-card:hover {
  transform: translateY(-5px);
  border-color: rgba(224, 196, 149, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.measurement-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #111;
  flex-shrink: 0;
}

.measurement-content {
  flex: 1;
}

.measurement-content small {
  color: var(--text-muted);
  font-size: 0.85rem;
  display: block;
  margin-top: 8px;
  line-height: 1.4;
}

/* Submit Section */
.submit-section {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(224, 196, 149, 0.1);
}

.privacy-note,
.concierge-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 20px 0;
}

.privacy-note i,
.concierge-note i {
  color: var(--gold);
}

/* Luxury Submit Button */
.luxury-submit-btn {
  position: relative;
  background: linear-gradient(135deg, var(--accent), #128C7E);
  color: white;
  border: none;
  padding: 0;
  border-radius: 50px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin: 30px 0;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3);
}

.luxury-submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(37, 211, 102, 0.5);
}

.btn-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 40px;
  z-index: 2;
}

.btn-sparkle {
  animation: sparkle 2s ease-in-out infinite;
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.7s ease;
}

.luxury-submit-btn:hover .btn-glow {
  left: 100%;
}

/* ====== LUXURY ASSURANCE ====== */
.luxury-assurance {
  padding: 100px 40px;
  background: linear-gradient(135deg, rgba(181, 124, 76, 0.05) 0%, transparent 100%);
}

.assurance-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.assurance-container h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 50px;
  color: var(--text);
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.assurance-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(224, 196, 149, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.assurance-card:hover {
  transform: translateY(-10px);
  border-color: rgba(224, 196, 149, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.assurance-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #111;
}

.assurance-card h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text);
}

.assurance-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ====== ENHANCED LUXURY FOOTER ====== */
.luxury-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
  padding: 80px 40px 40px;
  border-top: 1px solid rgba(224, 196, 149, 0.2);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.brand-tagline {
  color: var(--light-gold);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social .social-icon {
  width: 45px;
  height: 45px;
  background: rgba(224, 196, 149, 0.1);
  border: 1px solid rgba(224, 196, 149, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.footer-social .social-icon:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 25px;
  font-weight: 600;
  border-bottom: 2px solid rgba(224, 196, 149, 0.3);
  padding-bottom: 10px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  color: var(--light-gold);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
}

.footer-links-list a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-links-list a i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.concierge-link {
  color: var(--gold) !important;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(224, 196, 149, 0.2);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-concierge-cta {
  text-align: center;
}

.footer-concierge-btn {
  font-size: 1.1rem;
  padding: 16px 35px;
}

.copyright {
  color: var(--light-gold);
  font-size: 1rem;
  text-align: center;
}

.copyright i {
  color: #ff6b6b;
  margin: 0 5px;
}

/* ====== SUCCESS MODAL ====== */
.success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.success-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 50px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(224, 196, 149, 0.3);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
  max-width: 500px;
  width: 90%;
  animation: modalSlideIn 0.4s ease;
}

.success-icon {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 20px;
}

.success-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text);
}

.success-content p {
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.success-close-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(224, 196, 149, 0.4);
}

/* ====== ANIMATIONS ====== */
@keyframes sparkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .guide-header h2 {
    font-size: 3rem;
  }
  
  .footer-content {
    gap: 60px;
  }
  
  .footer-links-grid {
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .nav-links {
    gap: 15px;
  }
  
  .nav-links li a {
    padding: 10px 15px;
    font-size: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .hero-stats {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
    height: 70px;
  }
  
  .logo {
    font-size: 2.2rem;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 20px;
    border-top: 1px solid rgba(224, 196, 149, 0.2);
    display: none;
  }
  
  .nav-links.show {
    display: flex;
    animation: slideDown 0.3s ease-out;
  }
  
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links li a {
    padding: 15px 20px;
    border-radius: 8px;
    justify-content: flex-start;
    font-size: 1.1rem;
  }
  
  .nav-cta {
    margin: 20px 0 0 0;
    width: 100%;
  }
  
  .nav-cta .luxury-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .luxury-hero-section {
    height: 60vh;
    margin-top: 70px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-stats {
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .measurement-guide,
  .premium-intro,
  .luxury-measurement-form,
  .luxury-assurance {
    padding: 80px 20px;
  }
  
  .guide-header h2 {
    font-size: 2.5rem;
  }
  
  .intro-title {
    font-size: 2.2rem;
  }
  
  .form-container {
    padding: 30px 20px;
  }
  
  .form-header h3 {
    font-size: 1.8rem;
  }
  
  .section-header h4 {
    font-size: 1.3rem;
  }
  
  .guide-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .assurance-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .luxury-footer {
    padding: 60px 20px 30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .luxury-hero-section {
    height: 50vh;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .guide-header h2 {
    font-size: 2rem;
  }
  
  .intro-title {
    font-size: 1.8rem;
  }
  
  .form-container {
    padding: 20px 15px;
  }
  
  .form-grid,
  .measurements-grid,
  .preferences-grid {
    grid-template-columns: 1fr;
  }
  
  .intro-features {
    flex-direction: column;
    gap: 20px;
  }
  
  .measurement-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-concierge-btn {
    width: 100%;
    justify-content: center;
  }
}